home *** CD-ROM | disk | FTP | other *** search
- /*
- DU_LIB v2
- Gem Window Management & Dialog Library
- */
-
- /*=================================
- GEM drop-down Menu Bar Handlers
- =================================*/
-
- #include "dulib.h"
-
- /*===================================
- Activate/Install a pull-down menu
- ===================================*/
- short install_menu(short m)
- {
- short b;
- OBJECT *menu_loc;
- menu=m;
- rsrc_gaddr(0,menu,&menu_loc);
-
- do { graf_mkstate(&junk,&junk,&b,&junk); } while (b); // Don't call menu_bar() with the mouse button down or GEM crashes.
-
- menu_bar(menu_loc,1);
- return 0;
- }
-